home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / lotus / lotus028.dsk / 090.LSS < prev    next >
Text File  |  1995-10-19  |  2KB  |  79 lines

  1. Use "am_mod"
  2.  
  3. Sub Initialize
  4.    ClientMainWinClass = "WordProAppWndNT"
  5.    ClientID = AN_AMIPRO
  6.    ClientModName = "am_mod"
  7.    ClientLotusAppID = "WORDPRO"
  8.    ShowMeModName = "090"
  9.    AnimVersionNum =  .63 
  10.    NumFramesThisAnim =  8 
  11.    AnimationType = "QuickDemo"
  12.    SampleFile = "la2n70??.lwp"
  13.    AnimName = GetString( "0900000", IResult% )
  14. End Sub
  15.  
  16. Public Sub ShowMe (theNextStep As Integer)
  17.  
  18. GetCursorPos TempPos
  19. CursorPosForStep(theNextStep) = TempPos
  20.  
  21. Select Case theNextStep
  22.  
  23. Case  1 
  24.    X = RunScriptCommand (".GoToBookMark ""header""", ClientID, DeskwHdl.val )
  25.    Exit Sub
  26.  
  27. Case  2 
  28.    StepsText = GetString( "0901001", IResult% )
  29.    X = DoWhereIs (INSERTION_POINT,"",0,0,0,0,ClientID)
  30.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  31.    HideTextBubble
  32.    Exit Sub
  33.  
  34. Case  3 
  35.    StepsText = GetString( "0901002", IResult% )
  36.    SetBubblePosforMenus
  37.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  38.    HideTextBubble
  39.    ChooseMenuItem Insert_Page_Number
  40.    Exit Sub
  41.  
  42. Case  4 
  43.    StepsText = GetString( "0901003", IResult% )
  44.    X = DoWhereIs (DIALOG_CONTROL,"",25701,0,0,0,ClientID)
  45.    ShowTextBubble StepsText,  .5,  .45, NorthEast
  46.    HideTextBubble
  47.    Exit Sub
  48.  
  49. Case  5 
  50.    StepsText = GetString( "0901004", IResult% )
  51.    ShowTextBubble StepsText,  .2,  .38, NorthEast
  52.    HideTextBubble
  53.    MoveToObjRel  20 , 38 
  54.    DoMouse WM_LBUTTONDOWN%, 0
  55.    DoMouse WM_LBUTTONUP%, 0
  56.    Exit Sub
  57.  
  58. Case  6 
  59.    SendTextKeys  GetString( "0902006", IResult% ), 50
  60.    Exit Sub
  61.  
  62. Case  7 
  63.    StepsText = GetString( "0901005", IResult% )
  64.    ShowTextBubble StepsText,  .5,  .55, NorthEast
  65.    HideTextBubble
  66.    Exit Sub
  67.  
  68. Case  8 
  69.    StepsText = GetString( "0901006", IResult% )
  70.    X = DoWhereIs (DIALOG_CONTROL,"",1,0,0,0,ClientID)
  71.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  72.    HideTextBubble
  73.    MoveToObj Center
  74.    DoMouse WM_LBUTTONDOWN%, 0
  75.    DoMouse WM_LBUTTONUP%, 0
  76.    Exit Sub
  77. End Select
  78. End Sub
  79.